home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- #
- # (c) Copyright X-Tel Services Ltd. 1991
- # All rights reserved.
- #
- # CJR - 25/2/91
- #
- # Check there is room on disk.
- #
- # freespace [directory]
- #
- ######################################################
- fd=${1-.}
- if ( egrep -s -i "SunOS Release 4.1" /etc/motd ) ; then
- sr=45000
- else
- sr=55000
- fi
- fs=`df $fd | awk '{if (NR==2) printf $4}'`
- if [ "X$fs" = "X" ]; then
- fs=`df $fd | awk '{if (NR==3) printf $3}'`
- if [ "X$fs" = "X" ]; then
- echo "Can't check free disk - assuming OK"
- exit 0
- fi
- fi
- if [ $fs -gt $sr ]; then
- echo -n
- else
- echo "Only $fs KBytes free - not enough!"
- exit 1
- fi
-